qiaoshun8888 / Algorithm
Algorithm Practices
Algorithm Practices
::
class TreeNode {
public int val;
public TreeNode left;
public TreeNode right;
public TreeNode parent;
public TreeNode (int x){
self.val = x;
}
}
zhouxin created at 11 years, 2 months ago